In [1]:
import pandas as pd 
from pandas_profiling import ProfileReport
In [2]:
df = pd.read_csv("../data/raw/archive.zip")
In [3]:
profile = ProfileReport(df, title="Pandas Profiling Report")
In [4]:
profile
Summarize dataset: 100%|██████████| 23/23 [00:16<00:00,  1.44it/s, Completed]
Generate report structure: 100%|██████████| 1/1 [00:05<00:00,  5.36s/it]
Render HTML: 100%|██████████| 1/1 [00:03<00:00,  3.92s/it]
Out[4]:

In [ ]: